Bump transitive rustls-webpki dependency#165
Conversation
|
I don't understand why we need rustls-webpki even though it's not used in the code |
|
It's a transitive dependency (ureq depends on rustls, which depends on rustls-webpki). Adding an it as an explicit dependency tells Cargo's version resolver to use that version as the minimum, which is higher than what it would otherwise have chosen. |
|
Let's merge this before we get any further Dependabot e-mails. |
It's not really necessary to add it. You can just run |
|
Let's remove it next time we update |
...so that I can stop getting the annoying dependabot alert E-mails.
(I also considered changing my notif settings, but since there's apparently a vulnerability, why not stop people from running vulnerable code when running the tests that fetch something from the web)
We can then later remove the extra dependency line again after
urequpdates itsrustlsdependency and we update to that newerureqversion.